
/*======================================
         PLAYER COMPONENTS STYLE RG33
=======================================*/


.player-btn {
  border: none;
  outline: none;
  width: 20%;
  height: 40%;
  border-radius: 10%;
  background: var(--banner-play);
  -webkit-animation: mahmud 2s linear infinite;
          animation: mahmud 2s linear infinite;
}

.player-btn i {
  font-size: 40px;
  color: var(--white);
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}






/*======================================
           NAVBAR PART STYLE
=======================================*/
.navbar-bg {
  background: url(../../img/assets-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.navbar-logo,
.navbar-toggle,
.slide-head {
  display: none;
}

.navbar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-link {
  font-weight: 500;
  padding: 25px 0px;
  color: var(--body);
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar-link:hover {
  color: var(--primary);
}

.navbar-link:hover i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.navbar-link i {
  margin-right: 5px;
  margin-top: -2px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.navbar-link small {
  margin-left: 5px;
  font-size: 10px;
}

.navbar-item.active {
  z-index: 1;
}

.navbar-item.active .navbar-link {
  color: var(--primary);
}

.navbar-item.active .navbar-link i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.navbar-player {
  position: relative;
  margin: 0px 100px;
}

.navbar-player .player {
  position: absolute;
  top: 25px;
  left: 20%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
}

.navbar-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background: var(--white);
  -webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.15);
}

.navbar-fixed .navbar-link {
  padding: 35px 0px;
}

.navbar-fixed .player {
  top: -50px;
  width: 200px;
  height: 200px;
  margin-bottom: -100px;
}

.navbar-fixed .player .player-btn i {
  font-size: 35px;
}

.navbar-btn {
  display: none;
}

@media (max-width: 991px) {
  .navbar-content {
    padding: 10px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar-logo {
    display: block;
  }
  .navbar-logo img {
    width: 160px;
  }
  .navbar-toggle {
    border: none;
    display: none;
    background: none;
    display: block;
  }
  .navbar-toggle i {
    color: var(--white);
    font-size: 16px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-gdnt);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  .navbar-toggle ii:hover {
    color: var(--white);
    background: var(--secondary);
  }
  .slide-head {
    width: 100%;
    padding: 30px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .slide-head a img {
    width: 150px;
  }
  .slide-head button {
    border: none;
    outline: none;
    background: none;
  }
  .slide-head button i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--primary);
    background: var(--white);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  .slide-head button i:hover {
    color: var(--white);
    background: var(--primary-gdnt);
  }
  .navbar-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all linear .1s;
    transition: all linear .1s;
    z-index: 3;
  }
  .navbar-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .navbar-overlay.active .navbar-slide {
    left: 0px;
  }
  .navbar-slide {
    position: fixed;
    top: 0px;
    left: -270px;
    z-index: 3;
    width: 260px;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--light-white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-shadow: 8px 0px 12px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 8px 0px 12px 0px rgba(0, 0, 0, 0.15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
  }
  .navbar-list {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .navbar-list li {
    border-bottom: 1px solid var(--border);
  }
  .navbar-link {
    width: 100%;
    padding: 12px 15px;
    margin-right: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar-player {
    display: none;
  }
  .navbar-btn {
    display: block;
    text-align: center;
  }
  .navbar-fixed {
    border-radius: 0px 0px 10px 10px;
  }
  .navbar-fixed .navbar-link {
    padding: 12px 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-player {
    margin: 0px 120px;
  }
}


/*=====================================
        BOTTOM PLAYER PART STYLE
======================================*/
.bottom-player {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  border-radius: 10px 10px 0px 0px;
  background: var(--primary-gdnt);
  z-index: 2;
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
  display: none;
}

.bottom-player .player {
  width: 100px;
  height: 100px;
  margin: -40px auto 0px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.1);
}

.bottom-player .player-btn i {
  font-size: 24px;
}

@media (max-width: 991px) {
  .bottom-player {
    display: block;
  }
}
